home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / full / jbuild / setup / JBuilder / jsamples.z / molecule.jar / sunw / demo / molecule / MoleculeNameEditor.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-06-04  |  574 b   |  11 lines

  1. package sunw.demo.molecule;
  2.  
  3. import java.beans.PropertyEditorSupport;
  4.  
  5. public class MoleculeNameEditor extends PropertyEditorSupport {
  6.    public String[] getTags() {
  7.       String[] var1 = new String[]{"HyaluronicAcid", "benzene", "buckminsterfullerine", "cyclohexane", "ethane", "water"};
  8.       return var1;
  9.    }
  10. }
  11.